encoding/hex.dumper.buf (field)

22 uses

	encoding/hex (current package)
		hex.go#L231: 	buf        [14]byte
		hex.go#L256: 			h.buf[0] = byte(h.n >> 24)
		hex.go#L257: 			h.buf[1] = byte(h.n >> 16)
		hex.go#L258: 			h.buf[2] = byte(h.n >> 8)
		hex.go#L259: 			h.buf[3] = byte(h.n)
		hex.go#L260: 			Encode(h.buf[4:], h.buf[:4])
		hex.go#L261: 			h.buf[12] = ' '
		hex.go#L262: 			h.buf[13] = ' '
		hex.go#L263: 			_, err = h.w.Write(h.buf[4:])
		hex.go#L268: 		Encode(h.buf[:], data[i:i+1])
		hex.go#L269: 		h.buf[2] = ' '
		hex.go#L273: 			h.buf[3] = ' '
		hex.go#L278: 			h.buf[3] = ' '
		hex.go#L279: 			h.buf[4] = '|'
		hex.go#L282: 		_, err = h.w.Write(h.buf[:l])
		hex.go#L312: 	h.buf[0] = ' '
		hex.go#L313: 	h.buf[1] = ' '
		hex.go#L314: 	h.buf[2] = ' '
		hex.go#L315: 	h.buf[3] = ' '
		hex.go#L316: 	h.buf[4] = '|'
		hex.go#L325: 		_, err = h.w.Write(h.buf[:l])